*{
	margin: auto 0;
	padding: 0; }
  
body {
	font-family: 'Arial Narrow',Arial, Helvetica, sans-serif;
	text-align: left;
	background-image: URL(../img/36.png);
	background-repeat: no-repeat;}
  
html,body{
    height: 100%;
    margin: auto 0; }

/*下拉式選單*/

.wrap{
    max-width:100%;
    margin:0 auto;
  }
  
  
  .clearfix:after{
    content:'';
    display:table;
    clear:both;
  }

  .header{
    border-bottom: 1px solid #ffffff;
	padding-bottom: 0em;
	position: relative;
    z-index: 100;    }


   .logo a{
	float:left;
	width: 250px;
	height: 50px;
	background:rgba(224, 222, 222, 0);
	display: block;
	text-decoration: none;	
	text-indent: 0;
	overflow: hidden;
	white-space: nowrap;
  background-image: url("../img/34.png"); /* 设置背景图像 */
  background-size: 100%; /* 設置背景圖像大小為原來的 50% */
  background-repeat: no-repeat; /* 禁止图像重复 */
  text-indent: -9999px; /* 让链接文字消失，但不影响屏幕阅读器 */
  margin-left: 1%;
}
 
  .menu-list{
      float:right;
  }
  
  .menu-list li{/*菜單順序由左至右*/
    float:left;
    display: block;
    padding: 0 1em;
    height: auto;
  }
  
  .menu-list a
  {	display: block;
      text-decoration: none;
      font-weight: 700;
      color:#ffffff;
      padding:1em;
  }
  
  .menu-list a:hover{
	color: #013c3d;
    background-color: #c6c6c6;
}
  
  .showmenu{
      display: none;
      float: right;
      text-decoration: none;
      color:#ffffff;
      font-weight: 600;
      padding:1em;  }

/*下拉式選單*/

    /*下拉式選單RWD*/

    @media(max-width: 768px){
        .menu-list{		
            /*隱藏選單開始*/
            max-height: 0;
            overflow: hidden;
            /*隱藏選單end*/
            position: absolute;/*追隨.header*/
            /*讓選單從左到右延伸start*/
            right: 0;
            left: 0;
            /*讓選單從左到右延伸end*/
            top:67px;
            /*把menu-list位置移到.header下方。點擊menu滑出/因沒設header高度，所以用開發者工具看高多少*/
            z-index:100;
        transition: all 2.5s;
        }
        .menu-list li{
            float:none;
            border-bottom:  1px solid #ffffff ;
            background:rgb(3, 0, 0,0.8);
        }
        .showmenu{
            display: block;
        }
        /*jQ點擊後動態在 body 加上 class */ 
        .menu-show .menu-list{
            max-height: 336px; 
        }
    }
    .content{
        padding: 5% 6%;
    }
    .content p{
        line-height: 1.8;
        margin-bottom: 1.5em;
    }
    
            /*下拉式選單RWD*/
        /*下拉式選單*/
/************************************************Contact Us*****************************/
.container{
display: flex;
justify-content: center;
align-items: center;
flex-direction: column; }


p {
	font-size: 1.5em;
  font-family: 'Arial Narrow',Arial, Helvetica, sans-serif;
	color: rgba(255, 255, 255); 
	text-align: left;
	padding-left: 5%;
	padding-right: 3%;
  line-height: 1.5em;
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 2%;
	}

B > h1 {
  margin-top: 3%;
  text-align: center;
  font-size: 2em;
  color: rgba(255, 255, 255); 
}

B > h2,h3 {
  margin-top: 3%;
  text-align: center;
  font-size: 1.5em;
  color: rgba(255, 255, 255); }

B > h3 {
  text-align: left;}

form > h3{
  margin-top: 7%;
  margin-bottom: 3%;
  text-align: center;
  font-size: 1.5em;
  color: rgba(255, 255, 255); 

}

section {
  margin-bottom: 2em;
}


form {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  
}

label {
  margin-bottom: 0.5em;
  color: #ffffff;
}

input[type="text"],
input[type="email"],
textarea {
  padding: 0.5em;
  margin-bottom: 1em;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 1em;
}

input[type="submit"] {
  background-color: #333;
  color: #fff;
  padding: 0.5em;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  cursor: pointer;
}

input[type="submit"]:hover {
  background-color: #666;
}


#main {
	min-height: 100%;
	margin: 2.5% 0;
	padding: 0;
	display: flex;
	flex-flow: row;}

  #main > B {
	margin: 10px;
	text-align: center;
	padding: 0px;
	border-radius: 5pt;
	background: rgba(224, 222, 222, 0);
	flex: 3 1 33.3%;
	order: 1; }
  
  #main > C {
	margin: 10px;
	text-align: center;
	padding: 0px;
	border-radius: 5pt;
	background: rgba(185, 185, 185, 0);
	flex: 3 1 33.3%;
	order: 2; }

  /*內容 RWD*/
  @media all and (max-width: 768px) {

    p {      font-size: 1em;      }

    B > h1 {
      font-size: 1.5em;}
    
   B > h2,h3 {font-size: 1em;}
    
    form > h3{font-size: 1em;}

  
    #main,
    #page {
      flex-direction: column;
    }
    
    #main > B,
    #main > C{
      /* Return them to document order */
      order: 0;
    }
    
  
    }